"use client"; import { ChangeEvent, FC, PropsWithChildren, useMemo, useState } from "react"; import clsx from "clsx"; import Link from "next/link"; import "./style.scss"; /** * @description 列表组件 * @param {string} type 使用类型 * @param {(params: any) => void} callbackFun 回调方法 */ export interface ItemComProps { type?: string; callbackFun?: (params: any) => void; } const ItemCom: FC> = ({type = 'login', callbackFun}) => { let amountList: any[] = [] return ( ); }; export default ItemCom;